<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>TRG Mobilearth Releases</title> <!-- Tailwind CSS via CDN --> <script src="https://cdn.tailwindcss.com"></script> <style> /* Custom primary color */ .bg-primary { background-color: #013579; } .text-primary { color: #013579; } .hover\:bg-primary-dark:hover { background-color: #012456; } </style> </head> <body class="bg-gray-100 font-sans"> <!-- Navigation Bar --> <nav class="bg-primary shadow-md"> <div class="container mx-auto px-4"> <div class="flex justify-between items-center py-4"> <a href="#" class="text-white text-xl font-bold">TRG Mobilearth</a> <div class="hidden md:flex space-x-6"> <a href="#windows" class="text-white hover:text-gray-200">Windows</a> <a href="#android" class="text-white hover:text-gray-200">Android</a> <a href="#ios" class="text-white hover:text-gray-200">iOS</a> </div> <button class="md:hidden text-white focus:outline-none"> <svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16m-7 6h7"></path> </svg> </button> </div> </div> </nav> <!-- Main Content --> <div class="container mx-auto px-4 py-8"> <h1 class="text-4xl font-bold text-center text-primary mb-4">Welcome to Mobilearth App Releases</h1> <p class="text-center text-gray-600 mb-8">Download the latest versions of the app for different platforms.</p> <!-- List Item Example --> <!-- <li class='flex justify-between items-center p-3 bg-gray-50 rounded-lg'><span class='text-gray-700'>MobiBranch_9.1.127.0_x64.msix <i>(2025-01-30 00:58:25)</i></span><a href='https://github.com/TRGMobilearth/releases/releases/download/master36/MobiBranch_9.1.127.0_x64.msix' class='bg-primary text-white px-4 py-2 rounded-lg hover:bg-primary-dark transition-colors' download>Download</a></li> --> <!-- Windows MSIX Packages Section --> <div id="windows" class="bg-white rounded-lg shadow-md p-6 mb-8"> <h2 class="text-2xl font-semibold text-primary mb-4">MobiBranch MAUI Windows Packages</h2> <ul id='windows-list' class='space-y-2'> <li class='flex justify-between items-center p-3 bg-gray-50 rounded-lg'><span class='text-gray-700'>MobiBranch_9.1.211.0_x64.msix <i>(2025-02-11 00:36:50)</i></span><a href='https://github.com/TRGMobilearth/releases/releases/download/master/MobiBranch_9.1.211.0_x64.msix' class='bg-primary text-white px-4 py-2 rounded-lg hover:bg-primary-dark transition-colors' download>Download</a></li> <li class='flex justify-between items-center p-3 bg-gray-50 rounded-lg'><span class='text-gray-700'>MobiBranch_9.1.210.0_x64.msix <i>()</i></span><a href='https://github.com/TRGMobilearth/releases/releases/download/master/MobiBranch_9.1.210.0_x64.msix' class='bg-primary text-white px-4 py-2 rounded-lg hover:bg-primary-dark transition-colors' download>Download</a></li> </ul> </div> <!-- Android Builds Section --> <div id="android" class="bg-white rounded-lg shadow-md p-6 mb-8"> <h2 class="text-2xl font-semibold text-primary mb-4">MobiBanking MAUI Android Builds</h2> <ul id='android-list' class='space-y-2'> <li class='flex justify-between items-center p-3 bg-gray-50 rounded-lg'><span class='text-gray-700'>com.mobilearth.mobibanking-9-1-210_20250210223757.apk <b>(9.1.210)</b> <i>(2025-02-10 22:38:03)</i></span><a href='https://github.com/TRGMobilearth/releases/releases/download/masterdroidbank/com.mobilearth.mobibanking-9-1-210_20250210223757.apk' class='bg-primary text-white px-4 py-2 rounded-lg hover:bg-primary-dark transition-colors' download>Download</a></li> <li class='flex justify-between items-center p-3 bg-gray-50 rounded-lg'><span class='text-gray-700'>com.mobilearth.mobibanking-9-1-210_20250210231542.apk <b>(9.1.210)</b> <i>(2025-02-10 23:15:47)</i></span><a href='https://github.com/TRGMobilearth/releases/releases/download/masterdroidbank/com.mobilearth.mobibanking-9-1-210_20250210231542.apk' class='bg-primary text-white px-4 py-2 rounded-lg hover:bg-primary-dark transition-colors' download>Download</a></li> </ul> </div> <!-- iOS Builds Section --> <div id="ios" class="bg-white rounded-lg shadow-md p-6 mb-8"> <h2 class="text-2xl font-semibold text-primary mb-4">MobiBanking MAUI iOS Builds</h2> <ul id='ios-list' class='space-y-2'> </ul> </div> </div> </body> </html>